type crypto/aes.gcmAsm

6 uses

	crypto/aes (current package)
		aes_gcm.go#L48: 	g := &gcmAsm{ks: c.enc, nonceSize: nonceSize, tagSize: tagSize}
		aes_gcm.go#L53: type gcmAsm struct {
		aes_gcm.go#L66: func (g *gcmAsm) NonceSize() int {
		aes_gcm.go#L70: func (g *gcmAsm) Overhead() int {
		aes_gcm.go#L91: func (g *gcmAsm) Seal(dst, nonce, plaintext, data []byte) []byte {
		aes_gcm.go#L131: func (g *gcmAsm) Open(dst, nonce, ciphertext, data []byte) ([]byte, error) {